home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
anacron.prerm
< prev
next >
Wrap
Text File
|
2008-09-02
|
269b
|
12 lines
#!/bin/sh
set -e
# Automatically added by dh_installinit
if [ -x "/etc/init.d/anacron" ]; then
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d anacron stop || exit $?
else
/etc/init.d/anacron stop || exit $?
fi
fi
# End automatically added section